home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-08-25 | 1.1 KB | 35 lines | [TEXT/VIM!] |
- " vim: set ts=8:
- version 5.0
- set nocompatible " Use Vim defaults (much better!)
- set ai " always set autoindenting on
- set tw=76 " always limit the width of text to 76
- set bs=indent,eol,start " New syntax. This is equal to 2
- :if has("syntax")
- : syntax on " Not supported on 68k Macs
- :endif
- set visualbell
- set t_vb=
- set cpoptions=aABceFs
- set incsearch
- set hlsearch
- set bg=light
- set modeline
- set hidden
- "set guifont=profont " Profont is available on info-Mac
- " I prefer these colours, YMMV
- highlight Comment guifg=Red gui=NONE
- highlight Constant guifg=Magenta gui=NONE
- highlight Character guifg=Red gui=NONE
- highlight Special guifg=SlateBlue gui=NONE
- highlight Identifier guifg=DarkCyan gui=NONE
- highlight Statement guifg=DarkGreen gui=NONE
- highlight PreProc guifg=Purple gui=NONE
- highlight Type guifg=SeaGreen gui=NONE
- highlight Normal guibg=lightgrey gui=NONE
- highlight Number guifg=Blue gui=NONE
- highlight Cursor guibg=Green guifg=NONE
- highlight NonText guibg=darkgray gui=NONE
- highlight Error guibg=Red guifg=White gui=NONE
- highlight Todo guifg=Blue guibg=Yellow gui=NONE
-
-